home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / LLIST.ZIP / BYTES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-26  |  917 b   |  31 lines

  1. /*------------------------------------------------------------
  2. | FILE NAME: Bytes.h
  3. |
  4. | DOCUMENT: [1025.0]
  5. |
  6. | PURPOSE: To provide interface for byte-addressed memory access
  7. |          procedures.
  8. |
  9. | DESCRIPTION:  
  10. |
  11. | NOTE: See 'Parse.h' for scanning and parsing functions.
  12. |
  13. | HISTORY: 
  14. |          02.15.93 by Lee Malone
  15. ------------------------------------------------------------*/
  16.     
  17. #ifndef    _BYTES_H_
  18. #define    _BYTES_H_
  19.  
  20. #include <DataSize.h>
  21.  
  22. /* -------------------PROTOTYPES----------------------------- */
  23. Comparison  CompareBytes(AddressOfByte, Quad, AddressOfByte, Quad);
  24. Nothing     CopyBytes(AddressOfByte, AddressOfByte, Quad);
  25. Nothing     ExchangeBytes(AddressOfByte, AddressOfByte, Quad);
  26. Nothing     FillBytes(AddressOfByte, Quad, Pair);
  27. Truth       IsMatchingBytes(AddressOfByte, AddressOfByte, Quad);
  28. Nothing     ReplaceBytes(AddressOfByte, Quad, Pair, Pair);
  29.  
  30. #endif
  31.